home *** CD-ROM | disk | FTP | other *** search
/ Apple Reference & Present…nuary (Partner) - Disc 2 / The Apple Reference and Presentations Library (Disc 2)(January 1994).iso / Diehl Graphsoft / German / MiniCad / MiniCad-PPC / MiniCad 5.0.1-D / MiniCad 5.0.1-D.rsrc / STR#_7016.txt < prev    next >
Text File  |  1994-10-06  |  2KB  |  85 lines

  1. Returns a handle to the currently active symbol.
  2.  
  3. ActSymDef : Handle;
  4.  
  5. Returns a handle to the last object created in MiniPascal. Returns nil if no objects have been created yet.
  6.  
  7. LNewObj : Handle;
  8.  
  9. Receives a coordinate point location and if that point is near a graphic point it returns a HANDLE to that object
  10.  
  11. PickObject(X,Y : REAL) : HANDLE;
  12.  
  13. Receives a HANDLE to a folder within the symbol library and returns a HANDLE to the first object within that folder
  14.  
  15. FInFolder(FolderHandle : HANDLE) : HANDLE;
  16.  
  17. Receives a HANDLE to a layer and returns the HANDLE to the first object on that layer
  18.  
  19. FInLayer( LayerHandle : HANDLE) : HANDLE;
  20.  
  21. Receives a HANDLE to a symbol definition in a symbol library and returns a HANDLE to the first object within the symbol definition
  22.  
  23. FInSymDef( SymbolDefHandle : HANDLE) : HANDLE;
  24.  
  25. Receives a HANDLE to a 3D object and returns a HANDLE to the first object inside the 3D object
  26.  
  27. FIn3D(ThreeDHandle : HANDLE) : HANDLE;
  28.  
  29. Receives a HANDLE to a group and returns a HANDLE to the first object inside the group
  30.  
  31. FInGroup( GroupHandle : HANDLE) : HANDLE;
  32.  
  33. Returns a HANDLE to the first object in the current document's symbol library
  34.  
  35. FSymDef : HANDLE;
  36.  
  37. Receives a HANDLE to a graphic object and returns a HANDLE to its corresponding layer
  38.  
  39. GetLayer(ObjectHandle : HANDLE) : HANDLE;
  40.  
  41. Returns a HANDLE to the first selected object on the layer specified by the HANDLE LayerHandle
  42.  
  43. FSObject( LayerHandle : HANDLE) : HANDLE;
  44.  
  45. Returns a HANDLE to the currently active layer
  46.  
  47. ActLayer : HANDLE;
  48.  
  49. Returns a HANDLE to the last layer in a drawing
  50.  
  51. LLayer : HANDLE;
  52.  
  53. Returns a HANDLE to the first layer in a drawing
  54.  
  55. FLayer : HANDLE;
  56.  
  57. Receives an object name and returns a HANDLE to the object which has that name
  58.  
  59. GetObject(Name : STRING) : HANDLE;
  60.  
  61. Returns a HANDLE to the currently active spreadsheet
  62.  
  63. ActSSheet : HANDLE;
  64.  
  65. Return a HANDLE to the last selected object on the active layer
  66.  
  67. LSActLayer : HANDLE;
  68.  
  69. Return a HANDLE to the first selected object on the active layer
  70.  
  71. FSActLayer : HANDLE;
  72.  
  73. Returns a HANDLE to the first object on the active layer
  74.  
  75. FActLayer : HANDLE;
  76.  
  77. Returns a handle to the last object in the active document.
  78.  
  79. LObject : HANDLE;
  80.  
  81. Returns a handle to the first object in the active document.
  82.  
  83. FObject : HANDLE;
  84.  
  85.